home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol A-4 / (Vol A-4) Vol. A4.iso / Games / winterfood.swf / scripts / DefineSprite_104 / frame_4 / DoAction.as
Text File  |  2008-03-13  |  217b  |  14 lines

  1. if(FishTime > 0)
  2. {
  3.    gotoAndPlay(3);
  4. }
  5. else
  6. {
  7.    Num = int(Math.random() * 5) + 1;
  8.    if(_root["Duck" + Num].Eating == false)
  9.    {
  10.       _root["Duck" + Num].gotoAndPlay("Eat");
  11.    }
  12.    gotoAndPlay(2);
  13. }
  14.